home *** CD-ROM | disk | FTP | other *** search
/ Revista CD Expert 37 / CD Expert nº 37.iso / LastCall / lastcall.exe / stuff / lastcall.dxr / 00264.ls < prev    next >
Encoding:
Text File  |  2000-03-27  |  412 b   |  19 lines

  1. on mouseDown me
  2.   global gFastPlay, debug
  3.   if gFastPlay and not authoring() then
  4.     exit
  5.   end if
  6.   if the optionDown and the shiftDown then
  7.     gFastPlay = not gFastPlay
  8.     sprite(me.spriteNum + 1).visible = 1
  9.     updateStage()
  10.     if authoring() and debug then
  11.       repeat while the stillDown
  12.         nothing()
  13.       end repeat
  14.     end if
  15.     delay(1)
  16.     sprite(me.spriteNum + 1).visible = 0
  17.   end if
  18. end
  19.